home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / dcom / modems-part1 / 231 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  2.2 KB

  1. Path: news.borg.com!news
  2. From: warren@borg.com  (Warren Hall)
  3. Newsgroups: comp.dcom.modems
  4. Subject: Re: How to reset sportster
  5. Date: 3 Jan 1996 05:21:14 GMT
  6. Organization: Team OS/2
  7. Message-ID: <4cd3oa$4q9@news.borg.com>
  8. References: <4c4qsp$c0d@ccrwest.ccrwest.org> <4cbujf$494@charm.magnus.acs.ohio-state.edu>
  9. Reply-To: warren@borg.com (Warren Hall)
  10. NNTP-Posting-Host: l16.borg.com
  11. X-Newsreader: IBM NewsReader/2 v1.9d - NLS
  12.  
  13. In <4cbujf$494@charm.magnus.acs.ohio-state.edu>, szatezal@magnus.acs.ohio-state.edu (Shane M Zatezalo) writes:
  14. >In article <4c4qsp$c0d@ccrwest.ccrwest.org>,
  15. >David G. Cantor <dgc@ccrwest.org> wrote:
  16. >>I have a 28.8 sportser internal modem which I am using under linux
  17. >>and Windows95.  While the modem works well, on more than one occasion
  18. >>while I was debugging a modem script under linux, the modem has gotten
  19. >>into some sort of state which I am unable to reset without POWERING
  20. >>DOWN the computer.  Rebooting doesn't fix the problem.
  21. >>
  22. >>What happens is that the modem won't accept any input.  It doesn't
  23. >>respond to any "AT" command, not even "AT" alone.  I've tried "+++",
  24. >>playing with dtr, etc. without success.
  25. >>
  26. >>Is there any way to force this modem to reset without having to power
  27. >>down?
  28. >
  29. >I noticed this same effect when ppp'ing into OSU. If their modems
  30. >drop the connection, the 33.6k sportster will go into said "state".
  31. >Unplugging the phone line from it a few times & dialing out *sometimes* works.
  32. >
  33. >The best thing to do is quit whatever program was using the device (ie
  34. >dial-up networkgin), and startup one that does. (ie I launch procomm+)
  35. >It takes over the device - then quit it and launch dial-up networking.
  36. >
  37. >This, of course, works for win95, which I think is the problem
  38. >here. As for linux, I can't help ya there.
  39. >
  40. >
  41. >-- 
  42.  
  43. Here is a simple batch program which is just about as aggressive as you can get
  44. in plain DOS:
  45.  
  46. rem clear modem settings as aggressively as is reasonable.
  47. rem by warren@borg.com  12/09/95
  48. rem Change to your port n @ each 'COMn'  below
  49. mode COM3
  50. mode COM3: dtr=off
  51. Pause
  52. @echo ATH0 >  COM3
  53. rem above sends HANGUP
  54. @echo AT&F > COM3
  55. rem above sends FACTORY RESET
  56. @echo ATdt5551234  >  COM3
  57. pause 
  58. rem above sends DialTone number
  59. @echo ATH0 > COM3
  60. @echo ATZ0 > COM3
  61. EXIT
  62.  
  63. Warren
  64. http://www.borg.com/~warren
  65.  
  66.